home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
ip
/
ka9q
/
src890906.arc
/
HSVEC.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-03-20
|
647b
|
39 lines
.MODEL MEMMOD,C
LOCALS
%MACS
.LALL
extrn Stktop,Spsave,Sssave,hsint:proc,doret:proc
.CODE
dbase dw @Data ; save loc for ds (must be in code segment)
; hs0vec - high speed modem #0 interrupt handler
public hs0vec
label hs0vec far
push ds ; save on user stack
mov ds,cs:dbase ; establish interrupt data segment
mov Sssave,ss ; stash user stack context
mov Spsave,sp
mov ss,cs:dbase
lea sp,Stktop
push ax ; save user regs on interrupt stack
push bx
push cx
push dx
push bp
push si
push di
push es
mov ax,0 ; arg for service routine
push ax
call hsint
pop ax
jmp doret
end